home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / ms-0.07 / xms / Imakefile < prev    next >
Makefile  |  1995-07-03  |  797b  |  32 lines

  1. # Imakefile for MandelSpawn
  2.  
  3. BINDIR = /bin/X11
  4.  
  5. MSLIB=../lib/libms.a
  6.  
  7. /* Check if there is a SimpleMenu widget.  SaberC awareness */
  8. /* implies X11R4 or newer which implies the existence of the */
  9. /* SimpleMenu widget.  There must be an easier way... */
  10. #ifdef HasSaberC
  11. /* this is X11R4 or newer */
  12. R4_DEFINES = -DR4 -DMENU -DLABEL
  13. MENUSRC = menu.c label.c
  14. MENUOBJ = menu.o label.o
  15. DEPLIBS = XawClientDepLibs $(MSLIB)
  16. LOCAL_LIBRARIES = XawClientLibs $(MSLIB)
  17. #else
  18. /* this is X11R2 or X11R3 */
  19. DEPLIBS = $(DEPXTOOLLIB) $(DEPXLIB) $(MSLIB)
  20. LOCAL_LIBRARIES =  $(XTOOLLIB) $(XLIB) $(MSLIB)
  21. #endif
  22.  
  23. CDEBUGFLAGS = -O
  24.  
  25. DEFINES = $(R4_DEFINES)
  26. EXTRA_INCLUDES = -I../lib
  27. SYS_LIBRARIES = -lm
  28. SRCS = main.c Ms.c Mama.c xio.c $(MENUSRC)
  29. OBJS = main.o Ms.o Mama.o xio.o $(MENUOBJ)
  30.  
  31. ComplexProgramTarget(xms)
  32.